home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / msoftapp.zip / DIBLOOK.H < prev    next >
C/C++ Source or Header  |  1993-06-01  |  1KB  |  44 lines

  1. // diblook.h : main header file for the DIBLOOK application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "resource.h"           // main symbols
  18.  
  19. #define WM_DOREALIZE   (WM_USER + 0)
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CDibLookApp:
  23. // See diblook.cpp for the implementation of this class
  24. //
  25.  
  26. class CDibLookApp : public CWinApp
  27. {
  28. public:
  29.     CDibLookApp();
  30.  
  31. // Overrides
  32.     virtual BOOL InitInstance();
  33.  
  34. // Implementation
  35.  
  36.     //{{AFX_MSG(CDibLookApp)
  37.     afx_msg void OnAppAbout();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.